home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / DEVELOP.ZIP / DIRLST.DOC < prev    next >
Text File  |  1995-01-09  |  960b  |  28 lines

  1. The following documents the format of the DIR.LST files that PCBoard uses to
  2. store the LIST of "DIR Files" that PCBoard uses to determine which DIR fils
  3. should be displayed.
  4.  
  5. typedef struct {
  6.   char DirPath[30];
  7.   char DskPath[30];
  8.   char DirDesc[35];
  9.   char SortType;
  10. } dirlisttype;
  11.  
  12. DirPath is the complete path and filename of the DIR file to be displayed.
  13.  
  14. DskPath is the physical path location where files *associated* with the DIR
  15. file can be found.
  16.  
  17. DirDesc is the text description of the DIR file.
  18.  
  19. SortType is one of the following:  0 - no sort
  20.                                    1 - Sort by File Name (ascending)
  21.                                    2 - Sort by File Date (ascending)
  22.                                    3 - Sort by File Name (descending)
  23.                                    4 - Sort by File Date (descending)
  24.  
  25.  
  26. For a format of the actual DIR files (which are just text files) take a look
  27. at the DIR.DOC file.
  28.